* { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%); color: #ffffff; overflow-x: hidden; } .container { max-width: 1400px; margin: 0 auto; padding: 60px 20px; } .header { text-align: center; margin-bottom: 60px; position: relative; } .header::before { content: ''; position: absolute; top: -30px; left: 50%; transform: translateX(-50%); width: 100px; height: 4px; background: linear-gradient(90deg, #00f5ff, #ff00ff); border-radius: 2px; } h1 { font-size: 3.5rem; font-weight: 800; background: linear-gradient(135deg, #00f5ff, #ff00ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 20px; animation: fadeInDown 0.8s ease; } .subtitle { font-size: 1.2rem; color: #a0a0a0; font-weight: 300; margin-bottom: 25px; } .header-signup-btn { display: inline-flex; align-items: center; gap: 10px; padding: 12px 30px; background: linear-gradient(135deg, #00f5ff, #00a8ff); color: #000; border: none; border-radius: 50px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; animation: fadeInUp 0.8s ease; } .header-signup-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3); } .header-signup-btn:active { transform: translateY(0); } @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } .project-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 60px; } .project-description { background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; padding: 40px; animation: fadeInLeft 0.8s ease; } .project-description h2 { font-size: 2rem; margin-bottom: 20px; color: #00f5ff; } .project-description p { line-height: 1.8; color: #cccccc; font-size: 1.1rem; margin-bottom: 15px; } .tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; } .tag { padding: 8px 16px; background: rgba(0, 245, 255, 0.1); border: 1px solid rgba(0, 245, 255, 0.3); border-radius: 20px; font-size: 0.9rem; color: #00f5ff; } .video-section { background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; padding: 20px; animation: fadeInRight 0.8s ease; } .video-container { position: relative; width: 100%; padding-bottom: 56.25%; background: #000; border-radius: 12px; overflow: hidden; } .video-container video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; } .video-controls { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0, 0, 0, 0.8)); padding: 20px; display: flex; align-items: center; gap: 15px; } .play-btn { width: 40px; height: 40px; border-radius: 50%; background: #00f5ff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: transform 0.2s; } .play-btn:hover { transform: scale(1.1); } .gallery-section { margin: 60px 0; } .gallery-section h3 { font-size: 2rem; margin-bottom: 30px; color: #ff00ff; } .gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; } .gallery-item { position: relative; overflow: hidden; border-radius: 16px; cursor: pointer; aspect-ratio: 4/3; transition: transform 0.3s ease; } .gallery-item:hover { transform: scale(1.05); } .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; } .gallery-item:hover img { transform: scale(1.1); } .gallery-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0, 245, 255, 0.3), rgba(255, 0, 255, 0.3)); opacity: 0; transition: opacity 0.3s; display: flex; align-items: center; justify-content: center; } .gallery-item:hover .gallery-overlay { opacity: 1; } .action-buttons { display: flex; gap: 20px; justify-content: center; margin-top: 60px; flex-wrap: wrap; } .btn { padding: 16px 40px; border-radius: 50px; border: none; font-size: 1.1rem; font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 10px; transition: all 0.3s ease; position: relative; overflow: hidden; } .btn::before { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; border-radius: 50%; background: rgba(255, 255, 255, 0.2); transform: translate(-50%, -50%); transition: width 0.6s, height 0.6s; } .btn:hover::before { width: 300px; height: 300px; } .btn span { position: relative; z-index: 1; } .btn-primary { background: linear-gradient(135deg, #00f5ff, #00a8ff); color: #000; } .btn-secondary { background: linear-gradient(135deg, #ff00ff, #ff0080); color: #fff; } .btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3); } .lightbox { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.95); z-index: 1000; align-items: center; justify-content: center; } .lightbox.active { display: flex; } .lightbox-content { max-width: 90%; max-height: 90%; position: relative; } .lightbox-content img { max-width: 100%; max-height: 90vh; border-radius: 8px; } .lightbox-close { position: absolute; top: -50px; right: 0; background: none; border: none; color: white; font-size: 2rem; cursor: pointer; width: 40px; height: 40px; } .lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255, 255, 255, 0.1); border: none; color: white; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; transition: background 0.3s; } .lightbox-nav:hover { background: rgba(255, 255, 255, 0.2); } .lightbox-prev { left: -80px; } .lightbox-next { right: -80px; } @keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } } @keyframes fadeInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } } @keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } } .videos-section { margin: 60px 0; } .videos-section h3 { font-size: 2rem; margin-bottom: 30px; color: #ff00ff; } .videos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-bottom: 20px; } .video-card { background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px; overflow: hidden; transition: all 0.3s ease; cursor: pointer; display: flex; flex-direction: column; } .video-card:hover { transform: translateY(-8px); border-color: rgba(0, 245, 255, 0.3); box-shadow: 0 15px 40px rgba(0, 245, 255, 0.2); } .video-frame { position: relative; width: 100%; padding-bottom: 56.25%; overflow: hidden; background: #000; } .video-frame iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; border-radius: 0; } .video-info { padding: 20px; flex: 1; display: flex; flex-direction: column; } .video-title { font-size: 1.1rem; font-weight: 600; color: #00f5ff; margin-bottom: 10px; } .video-description { font-size: 0.95rem; color: #a0a0a0; line-height: 1.6; flex: 1; } .video-duration { font-size: 0.85rem; color: #666; margin-top: 15px; padding-top: 15px; border-top: 1px solid rgba(255, 255, 255, 0.1); } .view-all-videos-btn { text-align: center; margin-top: 20px; } .view-all-videos-btn a { display: inline-flex; align-items: center; gap: 10px; padding: 12px 30px; background: linear-gradient(135deg, #00f5ff, #00a8ff); color: #000; text-decoration: none; border-radius: 50px; font-weight: 600; transition: all 0.3s ease; } .view-all-videos-btn a:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3); } @media (max-width: 768px) { h1 { font-size: 2.5rem; } .project-grid { grid-template-columns: 1fr; } .gallery-grid { grid-template-columns: 1fr; } .videos-grid { grid-template-columns: 1fr; } .action-buttons { flex-direction: column; } .btn { width: 100%; justify-content: center; } }
Transforming Digital Banking for Africa
We partnered with a pioneering fintech startup to create a comprehensive digital banking platform that serves the unique needs of the African market. This project showcases our expertise in building scalable, secure, and user-friendly financial solutions.
Our team designed and developed a complete ecosystem including mobile applications, web dashboards, and backend infrastructure that processes millions of transactions daily. The platform integrates cutting-edge AI for fraud detection and personalized financial insights.
Through iterative design sprints and close collaboration with the founding team, we delivered a product that has onboarded over 500,000 users in its first year and secured Series A funding.